home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 40
/
Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso
/
Aminet
/
misc
/
emu
/
ATUtilities.lha
/
ATUtilities
/
BASIC
/
ACONTROL.BAS
< prev
next >
Wrap
BASIC Source File
|
2000-09-26
|
2KB
|
102 lines
$STRING 1
$INCLUDE "GEMDOS.INC"
call CreateScreen
ende=0
while ende=0
call MouseDown
if mouse.button<>0 then call MouseHandler
if gad.id<>-1 then
select case gad.num
case 100
call MenuHandler(6,220,Feld1$(),12)
select case menu.num
case 0
call LoadApp("install.exe")
case 6
call LoadApp("pc-fileman.exe")
case 9
call GetInfo
case 11
ende=1
end select
case 200
call MenuHandler(20,250,Feld2$(),4)
select case menu.num
case 0
call LoadApp("prefs.exe farben")
case 1
call LoadApp("prefs.exe verzeichnisse")
case 2
call LoadApp("prefs.exe maus")
case 3
call LoadApp("prefs.exe signalton")
end select
case 1001
call LoadApp("install.exe")
case 1004
shell "update.exe"
case 2002
call LoadApp("pc-fileman.exe")
case 33333
ende=1
end select
end if
gad.num=-1
menu.num=-1
wend
call CleanUp
cls
print "AControl - Version 1.0"
end
sub CreateScreen shared
call InitScreen(20,"AControl")
call MenuGadget(6,"Datei",100)
call MenuGadget(20,"Einstellungen",200)
dim Feld1$(20)
dim Feld2$(8)
Feld1$(0)="Disketten installieren"
Feld1$(1)="-"
Feld1$(2)="Kopieren Amiga zu PC"
Feld1$(3)="Kopieren PC zu Amiga"
Feld1$(4)="-"
Feld1$(5)="Amiga-Dateimanager"
Feld1$(6)="PC-Dateimanager"
Feld1$(7)="VESA-Slideshow"
Feld1$(8)="-"
Feld1$(9)="Information"
Feld1$(10)="-"
Feld1$(11)="Programm beenden"
Feld2$(0)="Farben"
Feld2$(1)="Verzeichnisse"
Feld2$(2)="Mausparameter"
Feld2$(3)="Signalton"
call BoolGadget(5,7,30,1,"Disketten installieren",1001)
call BoolGadget(5,11,30,1,"Kopieren Amiga zum PC",1002)
call BoolGadget(5,13,30,1,"Kopieren PC zu Amiga",1003)
call BoolGadget(5,17,30,1,"Update-CMD",1004)
call BoolGadget(45,7,30,1,"Amiga-Dateimanager",2001)
call BoolGadget(45,9,30,1,"PC-Dateimanager",2002)
call BoolGadget(45,15,30,1,"VESA-Slideshow",2003)
call BoolGadget(5,26,30,1,"AControl beenden",33333)
call MouseOn
end sub
sub GetInfo shared
call InformationBox("AControl - Version 1.0","Copyright (C) 1994 by","Thomas Dreibholz","All rights reserved.")
end sub